home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ASMWIZ14.ZIP / OCREATE.BAT < prev    next >
DOS Batch File  |  1991-01-29  |  426b  |  12 lines

  1. echo off
  2. echo   This batch file will assemble and link the EXAMPLE.ASM file using
  3. echo   OPTASM and LINK.  If you are using a different assembler and/or linker,
  4. echo   this batch file must be changed to reflect the names of your assembler
  5. echo   and linker.
  6. echo   --------------------------------------------------------------------
  7. pause
  8. optasm example;
  9. link example,,nul,asmwiz;
  10. erase example.obj
  11. execom example
  12.